home *** CD-ROM | disk | FTP | other *** search
/ Sacred & Secular / Sacred and Secular.iso / pc / movies / shared.dir / 04859_Script__narr buttonnarr button.ls < prev    next >
Text File  |  1996-04-03  |  308b  |  17 lines

  1. global narron
  2. on mouseDown
  3.   if the doubleclick then
  4.     dontpassevent
  5.   else
  6.     if narron then 
  7.       set narron = 0
  8.       set the visible of sprite 22 = true
  9.     else
  10.       set narron = 1
  11.       set the visible of sprite 22 = false
  12.     end if
  13.     playsndfile
  14.     updatestage
  15.   end if
  16.   
  17. end